home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.mactech.com 2010
/
ftp.mactech.com.tar
/
ftp.mactech.com
/
machack
/
Hacks96
/
FlyPaper.sit
/
Fly Paper
/
FlyPaper Source
/
Extension Sources
/
FlyPaperPatch.h
< prev
next >
Wrap
Text File
|
1996-06-22
|
471b
|
29 lines
#ifndef FLYPAPERPATCH_H
#define FLYPAPERPATCH_H
#include <Drag.h>
enum {
kNewDragSelector = 5,
kSetDragInputProcSelector = 11,
kTrackDragSelector = 13
};
typedef struct {
DragReference* theDragRef;
} NewDragParms;
typedef struct {
void* refCon;
DragInputProc inputProc;
DragReference theDragRef;
} SetDragInputProcParms;
typedef struct {
RgnHandle theRegion;
const EventRecord* theEvent;
DragReference theDragRef;
} TrackDragParms;
#endif